home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-11 | 362 b | 32 lines |
- #
- # QOS Makefile for DJGPP.
- #
-
- CFLAGS= -O -c -DMSDOS
-
- all: makefile.tag scale.exe
-
- .c.o:
- gcc $(CFLAGS) $<
-
- O = scale.o
-
- L = -lx11 -lsys -lc -lm
-
- scale.exe : $(O)
- gcc -o scale $(O) $(L)
- strip scale
- coff2exe scale
- del scale
-
-
- makefile.tag:
- del *.tag
- del *.obj
- del *.map
- del *.exp
- del *.exe
- del *.rsp
- echo >makefile.tag
-